package junit.tests; /** * Test class used in SuiteTest */ import junit.framework.TestCase; public class NotPublicTestCase extends TestCase { public NotPublicTestCase(String name) { super(name); } protected void testNotPublic() { } public void testPublic() { } }